home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 April / Software of the Month Club 1996 April.iso / pc / win / edu / profan2 / beispiel.lzh / BEEP.PRF < prev    next >
Encoding:
Text File  |  1995-07-31  |  288 b   |  15 lines

  1. DECLARE A%,OK%,Result!
  2. WHILENOT OK%
  3.   LET A%=@INPUT$("Please enter number between 1 an 25:",\
  4.                  "INPUT",A%)
  5.   IF @OR(@Lt(A%,1),@Gt(A%,25))
  6.     BEEP
  7.   ELSE
  8.     LET OK%=1
  9.   ENDIF
  10. WEND
  11. LET Result! = @Pow(A%,A%)
  12. DECIMALS 0
  13. @MESSAGEBOX(@Str$(Result!),"RESULT",0)
  14.  
  15.